From: emellor@ewan Date: Fri, 23 Sep 2005 14:53:36 +0000 (+0100) Subject: Fix call with missing parameters. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16770^2~1^2~14 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=475b779529ed78936835eca02a0c09e95bd0adc0;p=xen.git Fix call with missing parameters. --- diff --git a/tools/python/xen/xend/PrettyPrint.py b/tools/python/xen/xend/PrettyPrint.py index f17074fdfd..b0c0fe3440 100644 --- a/tools/python/xen/xend/PrettyPrint.py +++ b/tools/python/xen/xend/PrettyPrint.py @@ -252,7 +252,7 @@ class PrettyPrinter: self.block = self.block.parent def prettyprint(self, out=sys.stdout): - self.top.prettyprint(Line(out, self.width)) + self.top.prettyprint(Line(out, self.width), self.width) class SXPPrettyPrinter(PrettyPrinter): """An SXP prettyprinter.